home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000196_news@newsmaster….columbia.edu _Fri Oct 23 12:32:35 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id MAA00151
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 23 Oct 1998 12:32:34 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id MAA11260
  7.     for kermit.misc@watsun; Fri, 23 Oct 1998 12:32:33 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.vms
  11. Subject: Re: saving VMS RMS file type with transfer to DOS?
  12. Date: 23 Oct 1998 16:32:31 GMT
  13. Organization: Columbia University
  14. Lines: 49
  15. Message-ID: <70qb2v$95f$1@apakabar.cc.columbia.edu>
  16. References: <70qaa3$5st$1@nntp.ucs.ubc.ca>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9392 comp.os.vms:189521
  19.  
  20. In article <70qaa3$5st$1@nntp.ucs.ubc.ca>,
  21. Rod B. Nussbaumer <bomr@lin01.triumf.ca> wrote:
  22. : I have problem that I initially dismissed as insurmountable, but 
  23. : all the smart folks in this group may be able to prove me wrong.
  24. : The objective is to transfer a *lot* of files from a VAX (VMS) to a 
  25. : PC running DOS/Windows.  On the PC, the files are to be written to
  26. : a CD using a DOS/Win hosted CD writer. The CD is to be then read 
  27. : with a CD reader mounted on a VAX.  The problem is that the RMS
  28. : record type is lost in the file transfer *unless there is some 
  29. : provision for this that I don't know about*.  From what I know 
  30. : about MS-Kermit & MS-DOS, there is no concept analagous to VMS's
  31. : RMS, and therefore no way of preserving it during file transfers.
  32. That's absolutely correct.
  33.  
  34. : Hosting the CD writer on the VAX is not an option.  There is no 
  35. : requirement to use the files on the PC, other than to write them
  36. : to the CD.
  37. : Any suggestions welcome, including alternative file transfer
  38. : protocols/methods.
  39. It's easier than you think.  Use C-Kermit 6.0 on VMS:
  40.  
  41.   http://www.columbia.edu/kermit/ck60.html
  42.  
  43. Use Kermit 95 on the PC if it is running Windows 95, 98, or NT (or OS/2):
  44.  
  45.   http://www.columbia.edu/kermit/k95.html
  46.  
  47. Or use MS-DOS Kermit if it is running DOS or Windows 3.x:
  48.  
  49.   http://www.columbia.edu/kermit/mskermit.html
  50.  
  51. Now simply tell C-Kermit to:
  52.  
  53.   SET FILE TYPE LABELED
  54.  
  55. before sending the files to the PC (see the VMS Appendix of "Using C-Kermit"
  56. for details).  Then go ahead and put them on your CDROM.  To restore them to
  57. VMS from the CDROM with all their original RMS attributes, use the
  58. CKV*CVT.EXE program that comes with VMS C-Kermit (* = A for Alpha, V for VAX).
  59.  
  60. (I'm not sure if CKVxCVT can read directly from the CDROM or if the files
  61. must first be copied to a regular VMS disk -- I don't know that much about
  62. how VMS supports CDROMS...)
  63.  
  64. - Frank